numpy from csv

46

save numpy array to csv -

import pandas as pd 
pd.DataFrame(np_array).to_csv("path/to/file.csv")

numpy from csv -

from numpy import genfromtxt
my_data = genfromtxt('my_file.csv', delimiter=',')

Comments

Submit
0 Comments